*
{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    transition: .2s linear;
    font-family: "poppins",sans-serif;

}
body{
    background:pink ;

}
h3{
	color:black;
}
.wrapper
{
    margin: 10px auto;
    padding :0 10%;
    padding-bottom: 10px;
    text-transform: capitalize;


}
h1{
    color:black;
    font-size: 45px;
    text-align: center;
    padding-bottom: 15px;
    text-shadow: 0 15px 10px rgba(249, 247, 247, 0.2);
    font-family: "Verdana, Geneva, Tahoma, sans-serif";
}
.container
{
    display: grid;
    gap:15px;
    grid-template-columns: repeat(auto-fit,minmax(270px,1fr));

}
.box
{
   
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    background: grey;
    box-shadow: 0px  5px 10px rgba(15, 15, 15, 0.2);


}
.box img
{
    height: 70px;
}
.box h3{
    color:black;
    padding:10px 0;
    font-size: 20px;
}
.box p{
    color:black;
    font-size: 14px;
    line-height: 1,6;

}
.btn{
    color:white;
    border: none;
    outline: none;
    font-size: 17px;
    margin-top: 10px;
    padding:8px 15px;
    background: #333;
    border-radius: 5px;
    display:inline-block;
    text-decoration: none;


}
.btn:hover{
    letter-spacing: 1px;

}
.btn:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 15px blue;
}
@media (max-width:770px) {
    .wrapper
    {
        padding:20px;
    }
    
}
.progress{
    margin-top: 50px;
    margin-bottom: 0px;
    border: 2px solid white;
    justify-content:baseline;
}

.box{
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 14px 80px 18px 36px;
  cursor: pointer;
}

.box:hover{
     transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
